home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 1996 April
/
Software of the Month Club 1996 April.iso
/
pc
/
win
/
edu
/
profan2
/
beispiel.lzh
/
LLIST.PRF
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-07-31
|
335 b
|
19 lines
Declare File$,Line$
Let File$ = @LoadFile$("Load PROFAN File:","*.PRB")
IFNOT @Equ$(File$,"")
Cls
Assign #1,File$
Reset #1
Assign #2,"PRN"
Rewrite #2
WHILENOT @Eof(#1)
Input #1,Line$
Let Line$ = @AnsiToOem$(Line$)
Print #2,Line$
WEND
Close #1
Print #2,@Chr$(12)
Close #2
ENDIF
END